type net/http.http2FrameType

18 uses

	net/http (current package)
		h2_bundle.go#L1596: type http2FrameType uint8
		h2_bundle.go#L1599: 	http2FrameData         http2FrameType = 0x0
		h2_bundle.go#L1600: 	http2FrameHeaders      http2FrameType = 0x1
		h2_bundle.go#L1601: 	http2FramePriority     http2FrameType = 0x2
		h2_bundle.go#L1602: 	http2FrameRSTStream    http2FrameType = 0x3
		h2_bundle.go#L1603: 	http2FrameSettings     http2FrameType = 0x4
		h2_bundle.go#L1604: 	http2FramePushPromise  http2FrameType = 0x5
		h2_bundle.go#L1605: 	http2FramePing         http2FrameType = 0x6
		h2_bundle.go#L1606: 	http2FrameGoAway       http2FrameType = 0x7
		h2_bundle.go#L1607: 	http2FrameWindowUpdate http2FrameType = 0x8
		h2_bundle.go#L1608: 	http2FrameContinuation http2FrameType = 0x9
		h2_bundle.go#L1624: func (t http2FrameType) String() string {
		h2_bundle.go#L1665: var http2flagName = map[http2FrameType]map[http2Flags]string{
		h2_bundle.go#L1709: func http2typeFrameParser(t http2FrameType) http2frameParser {
		h2_bundle.go#L1725: 	Type http2FrameType
		h2_bundle.go#L1817: 		Type:     http2FrameType(buf[3]),
		h2_bundle.go#L1916: func (f *http2Framer) startWrite(ftype http2FrameType, flags http2Flags, streamID uint32) {
		h2_bundle.go#L2975: func (f *http2Framer) WriteRawFrame(t http2FrameType, flags http2Flags, streamID uint32, payload []byte) error {